home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.20021006-20030409 / 000349_fdc@columbia.edu_Sun Mar 2 13:51:51 EST 2003.msg < prev    next >
Text File  |  2020-01-01  |  2KB  |  50 lines

  1. Article: 14146 of comp.protocols.kermit.misc
  2. Path: newsmaster.cc.columbia.edu!news.columbia.edu!news-not-for-mail
  3. From: fdc@columbia.edu (Frank da Cruz)
  4. Newsgroups: comp.protocols.kermit.misc
  5. Subject: Re: kermit on *86 openstep 4.2 problem no such device
  6. Date: 2 Mar 2003 13:51:43 -0500
  7. Organization: Columbia University
  8. Lines: 33
  9. Message-ID: <b3tjrv$q46$1@watsol.cc.columbia.edu>
  10. References: <b3tg6a$qrv$1@panix2.panix.com>
  11. NNTP-Posting-Host: watsol.cc.columbia.edu
  12. X-Trace: newsmaster.cc.columbia.edu 1046631104 3742 128.59.39.139 (2 Mar 2003 18:51:44 GMT)
  13. X-Complaints-To: postmaster@columbia.edu
  14. NNTP-Posting-Date: 2 Mar 2003 18:51:44 GMT
  15. Xref: newsmaster.cc.columbia.edu comp.protocols.kermit.misc:14146
  16.  
  17. In article <b3tg6a$qrv$1@panix2.panix.com>, Dan Hitt <hitt@panix.com> wrote:
  18. : I'm trying to use kermit 8.0.206 for openstep 4.2 on a fairly new *86
  19. : box (circa year 2000).  It compiles smoothly, but when i try to
  20. : use it, i get a `No such device' error.
  21. : My exact command is
  22. :    wermit -l /dev/cua -m hayes
  23. : and the exact error text is
  24. :    /private/dev/cua: No such device
  25. :    can't open device
  26. : with error status 1.
  27. What does:
  28.  
  29.   ls -l /dev/cua
  30.  
  31. tell you?  Every Unix has a different naming scheme for serial ports; it
  32. even changes from one release to the next (as in Linux).  Look in /dev
  33. for names that start with "cu", "tt", etc, and try them until you get one
  34. that corresponds to your port.  You'll probably need to do this as root,
  35. since most devices are not world read-writable.
  36.  
  37. Once you figure out which device it is, read:
  38.  
  39.   http://www.columbia.edu/kermit/ckuins.html#x10
  40.  
  41. and:
  42.  
  43.   http://www.columbia.edu/kermit/ckuins.html#x11
  44.  
  45. (Sections 10 and 11 of the C-Kermit for Unix installation instructions.)
  46.  
  47. - Frank
  48.